-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add RSA_KEY_SIZE flag to cli test script #114
Add RSA_KEY_SIZE flag to cli test script #114
Conversation
4340aab
to
bbe12c8
Compare
I was wondering if we could start doing something like:
|
See for example: 2c78cc3 |
To be clearer, I'm talking about the commit message here. |
Sounds good. Will update the commit. |
bbe12c8
to
4aeead4
Compare
key_size=$1 | ||
key_param="--bits $1" | ||
else | ||
key_size=${DEFAULT_SIZE} | ||
key_size=2048 | ||
key_param="" | ||
fi | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a blocke but would it be worth to have a print-out of the chosen key size? Given that we have multiple ways of setting it RSA_KEY_SIZE
enviroment var, --rsa-key-size
or the default?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will add it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added now.
This flag can be used for testing parsec on slower platforms where RSA 2048 key operations are time consuming. Signed-off-by: Gowtham Suresh Kumar <[email protected]>
4aeead4
to
250350c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This flag can be used for testing parsec on slower platforms where RSA 2048 key operations are time consuming.
Closes #112
Signed-off-by: Gowtham Suresh Kumar [email protected]